home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / filelist / filelist.doc < prev    next >
Text File  |  1991-11-24  |  3KB  |  75 lines

  1. Giovanni Guardalben
  2. Hi.T Srl
  3. Via Carlo Steeb, 7
  4. 37122 Verona
  5. Italy
  6.  
  7. tel. +39-45-592966
  8. tel. +39-45-592785
  9. fax  +39-45-800-9890
  10.  
  11. This is a short description of properties of a multiple selection file list
  12. control:
  13.  
  14.  
  15.     BackColorGray : - introduces background (and/or foreground) color for
  16.                       disabled list entries
  17.                     - COLOR datatype
  18.                     - editable at design/run time
  19.  
  20.     ForeColorGray : - introduces foreground (and/or background) color for
  21.                       disabled list entries
  22.                     - COLOR datatype
  23.                     - editable at design/run time
  24.  
  25.     MaxSelect     : - max number of list entries that can be selected
  26.                     - SHORT datatype
  27.                     - editable at design/run time
  28.  
  29.  
  30.     FileName      : - name of file that contains list items
  31.                       Note: each file item must be of fixed length (including
  32.                             CR and LF if generated by a text editor);
  33.                             at run time must be preceded by line size;
  34.                     - STRING datatype
  35.                     - editable at design/run time
  36.  
  37.     LineSize      : - length of list items (max 80 chars)
  38.                     - SHORT datatype
  39.                     - editable at design/run time
  40.  
  41.     VerifyText    : - returns an error if the string is not in the list
  42.                     - STRING datatype
  43.                     - editable at design/run time
  44.  
  45.     LocateText    : - positions the list on this property's text
  46.                     - STRING datatype
  47.                     - editable at design/run time
  48.  
  49.     ListArray     : - array that returns the list items text
  50.                     - STRING datatype
  51.                     - read only at run time
  52.  
  53.     ListGray      : - array that disables list items from selection
  54.                     - SHORT datatype
  55.                     - read/write at run time
  56.  
  57.     ListSelect    : - array that returns/sets selected list items
  58.                       Note: last element of ListGray must be -1
  59.                     - read/write at run time
  60.  
  61.     DisplayCol    : - array that selects which tokens and in what order to
  62.                       display tokens on the list
  63.                       Note: tokens are extracted from each file line
  64.                             considering blanks/tabs/CR/LF as separators
  65.  
  66.     OutputCol     : - array that selects which tokens and in what order to
  67.                       return on the ListArray array
  68.                       Note: tokens are extracted from each file line
  69.                             considering blanks/tabs/CR/LF as separators
  70.  
  71.     InputCol      : - array that selects which tokens and in what order to
  72.                       verify on the VerifyText string
  73.                       Note: tokens are extracted from each file line
  74.                             considering blanks/tabs/CR/LF as separators
  75.